home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Reader's Corner / Reader's Contibutions / Modified / FrEQuency data / 01821.ls < prev    next >
Encoding:
Text File  |  1995-01-19  |  617 b   |  24 lines

  1. on exitFrame
  2.   global gunfire
  3.   if the movieRate of sprite 1 = 1 then
  4.     set the movieTime of sprite 33 to 0
  5.     set the movieRate of sprite 33 to 1
  6.     set the movieRate of sprite 1 to 0
  7.     play frame "lay backa"
  8.   end if
  9.   if the movieRate of sprite 33 = 1 then
  10.     set the movieTime of sprite 1 to 0
  11.     set the movieRate of sprite 1 to 1
  12.     set the movieRate of sprite 33 to 0
  13.     play frame "lay backa"
  14.   end if
  15.   set the movieTime of sprite 4 to 0
  16.   set the movieRate of sprite 4 to 1
  17.   set gunfire to gunfire + 1
  18.   if gunfire = 2 then
  19.     play frame "loopera"
  20.   else
  21.     play frame "lay backa"
  22.   end if
  23. end
  24.